home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Languages Suite
/
ProgramD2.iso
/
Borland
/
Borland C++ V5.02
/
EXAMPLES.PAK
/
HELLO.C
< prev
next >
Wrap
C/C++ Source or Header
|
1997-05-06
|
218b
|
16 lines
// Borland C++ - (C) Copyright 1991, 1995 by Borland International
/* HELLO.C -- Hello, world */
#include <stdio.h>
#include <conio.h>
int main()
{
printf("Hello, world\n");
getch();
return 0;
}